-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fix compilation errors for the whole project #1864
Conversation
CLAs look good, thanks! |
"test": "npm run test:packages && npm run test:cli", | ||
"mobile_test": "mocha tests/e2e/e2e_workflow.spec.js", | ||
"test:cli": "node tests/runner", | ||
"test:inspect": "node --inspect --debug-brk tests/runner", | ||
"test:packages": "node scripts/run-packages-spec.js", | ||
"build-config-interface": "dtsgen lib/config/schema.json --out lib/config/schema.d.ts", | ||
"eslint": "eslint .", | ||
"tslint": "tslint \"**/*.ts\" -c tslint.json -e \"**/blueprints/*/files/**/*.ts\" -e \"node_modules/**\" -e \"tmp/**\"", | ||
"tslint": "tslint '**/*.ts' -c tslint.json -e '**/blueprints/*/files/**/*.ts' -e 'node_modules/**' -e 'tmp/**' -e 'dist/**'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revert the \"
to '
change please. It's a windows compatibility thing, it really needs to be \"
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Also uses
ts-node
now, locally, which is slower but more consistent for sourcemaps and errors.For the next release we will publish javascript files, so speed in typescript will not be an issue.